home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980424-19980901 / 000028_news@newsmaster….columbia.edu _Mon May 4 22:04:17 1998.msg < prev    next >
Internet Message Format  |  1998-08-31  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id WAA20761
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 4 May 1998 22:04:17 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id WAA19240
  7.     for kermit.misc@watsun; Mon, 4 May 1998 22:04:16 -0400 (EDT)
  8. Path: news.columbia.edu!panix!nntprelay.mathworks.com!newsfeed.internetmci.com!204.210.64.20!newsfeed.maine.rr.com!not-for-mail
  9. From: "Judas" <JudasThePriest@hotmail.com>
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Xmodem problems in K95...
  12. Date: Mon, 4 May 1998 21:56:30 -0400
  13. Organization: Road Runner
  14. Lines: 26
  15. Message-ID: <6ilqda$5sq$1@proxye2.maine.rr.com>
  16. NNTP-Posting-Host: dt054n77.maine.rr.com
  17. X-Newsreader: Microsoft Outlook Express 4.72.3007.0
  18. X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3007.0
  19. Xref: news.columbia.edu comp.protocols.kermit.misc:8679
  20.  
  21. I am trying to download a file via Xmodem with K95 1.1.16 and keep getting
  22. an exemption error.  The error is "the instruction at '0x0055e9b0'
  23. referenced memory at '0x0000000a'.  The memory could not be 'read'".  At
  24. that point the only option is to press OK to exit the dialog box.  The
  25. message comes up when the download actually starts by the remote site.  To
  26. duplicate the error fee free to enter this text into a .ini file and call
  27. the .ini file with k95 file.ini.  Here is the settings that I am calling k95
  28. with...  The hwion.dat file  can contain any information.
  29.  
  30. Anyone have any ideas on this one?
  31.  
  32. SET FILE COLLISION OVERWRITE
  33. SET TERMINAL TYPE TTY
  34. SET PORT TAPI
  35. SET MODEM TYPE TAPI
  36. SET TAPI MODEM-DIALING ON
  37. SET PROTO XMODEM
  38. CLEAR INPUT
  39. DIAL 1-219-748-5527
  40.  
  41. define \%e Errors logging in
  42. wait 2
  43. send HwiOn.dat
  44. if failure goto writerr
  45.  
  46.